home *** CD-ROM | disk | FTP | other *** search
/ Saar AMOK 2 / Saar AMOK II - Oktober 1994 (1994)(Kreativ Marketing)(DE)[!][I-7598].iso / disks / 651_700 / 658 / set040 / you_must_read_this < prev   
Text File  |  1993-04-24  |  3KB  |  78 lines

  1.  
  2.     This document is for users who are using the versions 37.10 or
  3.     greater of 68040.library. 
  4.     
  5.     A4000 or A3640 Card owners should see the MAPROM option in the
  6.     main document.
  7.     
  8.     PLEASE CHECK WHICH VERSION YOU ARE USING, AND IF YOU ARE USING
  9.     37.10 OR GREATER YOU MUST FOLLOW THE DIRECTIONS BELOW OR THE 
  10.     PROGRAM WILL NOT WORK!!
  11.     
  12.     IF YOU DO NOT KNOW HOW TO CHECK THE VERSION OF THE LIBRARY,
  13.     USE THE COMMODORE 'VERSION' COMMAND. (EG. version libs:68040.library)
  14.     
  15.     V2.1+ of Set040 was done especially for these new versions of
  16.     the library.  These new libraries are making use the MMU and
  17.     this makes the function of Set040 much more difficult.  The
  18.     rest of this document will explain the differences when Set040
  19.     and the new 68040.library are present and the changes you must
  20.     make to your startup-sequence in order for the two to work.
  21.     
  22.     Set040 will refuse to install itself if the MMU is already in
  23.     use, this means that the normal method of usage, as described
  24.     in the Set040 document file will no longer work, because when 
  25.     Setpatch installs 68040.library the MMU will be replaced.
  26.      
  27.     You must change your startup-sequence so that the Commodore
  28.     Setpatch command comes *AFTER* the Set040 entries.
  29.     
  30. EXAMPLE
  31. -------
  32.     
  33. ; $VER: startup-sequence 39.9 (9.8.92)
  34.  
  35. C:Version >NIL:
  36. C:AddBuffers >NIL: DF0: 15
  37. FailAt 21
  38.  
  39. set040 >nil: kickrom
  40. set040 >nil: fastrom reverse reset noclick
  41. C:SetPatch QUIET
  42. ....
  43.  
  44.         Commodore has written the 68040.library to be compatible with
  45.         Set040 if used this way.  It will make sure that the current
  46.         location of the kickstart is the same when the new MMU tables
  47.         become active.
  48.         
  49.         The Setpatchpatch program of mine is no longer required, as the
  50.         new 68040.library takes care of the patches that used to be done
  51.         by this program.
  52.         
  53.         The reset handler had to be changed in order to work.  When the
  54.         new library took over the MMU, Set040's tables are replaced.  The
  55.         reset handler keeps a note of where the tables are, and replaces
  56.         them upon a reset, and completely re-installs the Set040 setup.
  57.         This allows the Kickstart to survive the reboot as it always did.
  58.         The startup-sequence 'setpatch' entry will once again replace the
  59.         Set040 setup and this process will continue each boot.
  60.         
  61.         
  62.         The 'FULLMAP' option of Set040 becomes rather redundant, as the
  63.         new library sets up its own entire mapping, and only copies the
  64.         Kickstart location.  You can of course still do the 'NOCLICK' patch
  65.         as shown in the above example.
  66.         
  67.         The 'VERBOSE' option of Set040 will currently show ALIENMMU and
  68.         not show any more info.  In the next version I will change this
  69.         so that is will show the setup of 68040.library's installation.
  70.         
  71.         
  72.         
  73.         
  74.         
  75.         
  76.         
  77.  
  78.